home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / gnulib / _eprintf.c < prev    next >
C/C++ Source or Header  |  1989-02-28  |  205b  |  11 lines

  1. #include <stdio.h>
  2. /* This is used by the `assert' macro.  */
  3. void
  4. __eprintf (string, line, filename)
  5.      char *string;
  6.      int line;
  7.      char *filename;
  8. {
  9.   fprintf (stderr, string, line, filename);
  10. }
  11.